home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / online / amftp / rexx / rexx.doc < prev   
Text File  |  1996-09-08  |  6KB  |  128 lines

  1. AmFTP Arexx:
  2. ============
  3. V1 - overworked v1.53 Rexx Commands
  4. V2 - new implemented Rexx Commands since Beta v1.62
  5.  
  6.  
  7. REXXPORT: AMFTP.1 / AMFTP.2 / ... (Shown in window title)
  8. ---------
  9.  
  10. Commands:
  11. ---------
  12.  
  13. CONNECT PROFILE/N        V1 Connect with server profile Nr. PROFILE.
  14.                             (See also CONNECTHOST to connect to a
  15.                             specified host, see also GETHOSTS, to get all
  16.                             profile labels)
  17.  
  18. CONNECTHOST HOST         V2 Connects to given host. (See also CONNECT to
  19.                             connection to a stored profile entry)
  20.  
  21. CLOSE                    V1 Closes Connection. (See also QUIT to close
  22.                             connection and quit)                    
  23.  
  24. ISCONNECTED              V1 Returns "1" in RESULT, if we're connected to
  25.                             any host.
  26.  
  27. CHANGEDIR DIR            V1 Sends changedir command to server.
  28.  
  29. CHANGELOCALDIR DIR/F     V2 Changes the directory in the left window.
  30.                             An empty pathname ("") causes a reload of
  31.                             local directory contents.
  32.  
  33. GETDIRS VAR              V1 Fills all directory entries from the right
  34.                             listview in a STEM variable.
  35.                             Returns number of entries in RESULT.
  36.                             (See also GETFILES)
  37.  
  38. GETLOCALDIRS             V2 Fills all directory entries from the left
  39.                             listview in a STEM variable.
  40.                             Returns number of entries in RESULT.
  41.                             (See also GETLOCALFILES)
  42.  
  43. GETFILES VAR             V1 Fills all file entries from the right
  44.                             listview in a STEM variable.
  45.                             Returns number of entries in RESULT.
  46.                             (See also GETDIRS)
  47.  
  48. GETLOCALFILES VAR        V2 Fills a STEM variable with the file contents
  49.                             of the current work directory.
  50.                             (See also GETLOCADIRS)
  51.  
  52. GETSELECTED VAR          V2 Returns the selected items in the right
  53.                             window into a STEM variable.
  54.  
  55. RECEIVE FILE             V1 Receives directly file from variable.
  56.                             (See also BATCH, RECEIVEBATCH)
  57.  
  58. BATCH FILE               V1 Marks file from variable in batch queue.
  59.                             (See also CLEARBATCH, RECEIVEBATCH)
  60.  
  61. CLEARBATCH               V2 Clears all contents of the batchwindow.
  62.                             (See also BATCH)
  63.  
  64. RECEIVEBATCH             V1 Receives batch queue from connected server.
  65.                             (See also BATCH, CLEARBATCH)
  66.  
  67. SEND FILE                V1 Sends local file from variable to remote
  68.                             server.
  69.                             (See also RECEIVE)
  70.  
  71. INACTION                 V2 Returns 1, when AmFTP is still in action
  72.                             (See also WAITACTION)
  73.  
  74. WAITACTION PORT          V2    Sends Msg to specified RexxMsgPort, when
  75.                             action of last command is done.
  76.                             Use just "call WAITPKT 'rexxmsgportname'" 
  77.                             from rexxsupport.library to wait.
  78.                             There is no need of a GETPKT afterwards.
  79.                             (Take a look at example rexx script how to
  80.                             use it)
  81.  
  82. RAW TEXT/F               V1 Sends raw command to connected server.
  83.                             You should know, what you're doing, using
  84.                             this command. (See also rfc 959)
  85.  
  86. ICONIFY                  V2 Iconifies the userinterface. (See also
  87.                             SHOWUP)
  88.  
  89. SHOWUP                   V2 De-Iconifies the userinterface. (See also
  90.                             ICONIFIY)
  91.  
  92. QUIT                     V2 Causes the programm to close the connection
  93.                             and end. (See CLOSE to only close connection)
  94.  
  95. GETHOSTS VAR             V1 Fills all profile entry labels in a STEM-
  96.                             variable. (See also CONNECT)
  97.  
  98. GETPROFILE PROFILE/N VAR V2 Fills the settings of the given profile in a
  99.                             STEM array.
  100.                             (See also SETPROFILE)
  101.                             (Take a look at example rexx script how to
  102.                             use it)
  103.                             The variables are:
  104.                             VAR.LABEL    Labelname
  105.                             VAR.HOST     Hostname
  106.                             VAR.PORT     Portnumber
  107.                             VAR.ADT      Aminet Download Tool-Server
  108.                             VAR.ANON     Anonymous Login?
  109.                             VAR.USERNAME Login username
  110.                             VAR.PASSWORD Login password
  111.                             VAR.DEFDIR   Default directory
  112.                             VAR.LOCALDIR Local directory
  113.  
  114. SETPROFILE PROFILE/N VAR V2 Sets the profile according to the parameters
  115.                             given. (See CREATEPROFILE, GETPROFILE for use
  116.                             and parameters)
  117.                             Unset variables aren't changed in profile.
  118.                             (Take a look at example rexx script how to
  119.                             use it)
  120.  
  121. CREATEPROFILE VAR        V2 Creates a new empty profile with given
  122.                             parameters.
  123.                             Returns the number of the created profile, to
  124.                             fill in with SETPROFILE.
  125.                             (See also GETPROFILE, SETPROFILE)
  126.                             (Take a look at example rexx script how to
  127.                             use it)
  128.